Skip to main content
GET
/
v1
/
prompt-tools
Get Prompt Tools
curl --request GET \
  --url https://api.getmaxim.ai/v1/prompt-tools \
  --header 'x-maxim-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "type": "<string>",
      "workspaceId": "<string>",
      "accountId": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "config": "<unknown>",
      "folderId": "<string>",
      "fromMcpServer": "<string>"
    }
  ],
  "pagination": {
    "hasMore": true,
    "cursor": "<string>"
  }
}

Authorizations

x-maxim-api-key
string
header
required

API key for authentication

Query Parameters

workspaceId
string
required

Unique identifier for the workspace

id
string

Unique identifier for the prompt tool

name
string

Name of the prompt tool

folderId
string

Folder ID

limit
number | null
default:10

Maximum number of records to return

Required range: x <= 100
cursor
string

Pagination cursor

Response

Prompt tools retrieved successfully

data
object[]
required
pagination
object
required